home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 398 / 398.xpi / chrome / forecastfox.jar / content / about.xul < prev    next >
Extensible Markup Language  |  2010-02-04  |  2KB  |  46 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--****************************************************************************
  4.   Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
  5.   ***************************************************************************-->
  6. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  7. <?xml-stylesheet href="chrome://forecastfox/content/bindings.css" type="text/css"?>
  8. <?xml-stylesheet href="chrome://forecastfox/skin/forecastfox.css" type="text/css"?>
  9.  
  10. <!DOCTYPE window SYSTEM "chrome://forecastfox/locale/forecastfox.dtd" >
  11.  
  12. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  13.         xmlns:html="http://www.w3.org/1999/xhtml"
  14.         id="ff-about"
  15.         persist="screenX,screenY"
  16.         screenX="10" screenY="10"
  17.         windowtype="forecastfox:about"
  18.         title="&ff.about.title;">
  19.         
  20.   <script type="application/x-javascript" src="chrome://forecastfox/content/utilities/helpers.js"/>
  21.   
  22.   <keyset id="ff-keys">
  23.     <key keycode="VK_ESCAPE" oncommand="window.close();"/>
  24.   </keyset>
  25.  
  26.   <ffheader type="complex" id="ff-about-header" headeralign="center">
  27.     <image id="ff-about-icon" src="chrome://forecastfox/skin/images/icon32.png"/>
  28.     <label id="ff-about-version" value="&ff.about.version;"/>
  29.   </ffheader>
  30.  
  31.   <hbox id="ff-about-content" class="ff-content" align="center">
  32.     <html:iframe id="ff-credits-iframe" src="chrome://forecastfox/content/about.xhtml" flex="1"/>
  33.   </hbox>
  34.  
  35.   <hbox id="about-footer" class="ff-footer" align="center">
  36.     <label value="&ff.providedby;"/>
  37.     <fflink label="&acw.site;" tooltiptext="&acw.tooltip;" href="&acw.main;" partner="true" from="dialog"/>
  38.     <spacer class="ff-btnspacer" flex="1"/>
  39.     <button label="&ff.ok;" default="true" class="ff-button" oncommand="window.close();"/> 
  40.   </hbox>
  41. </window>
  42.  
  43.  
  44.  
  45.  
  46.